@extends('layouts.app') @section('title', 'Edit Quote') @section('breadcrumb')Quotes {{ $quote->quote_number }} Edit@endsection @section('content')
@csrf @method('PUT') @if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif

{{ $quote->quote_number }} — Edit

Record how much deposit has been received from the client.

Cancel
@endsection