@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.quotation.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('project'))
{{ $errors->first('project') }}
@endif {{ trans('cruds.quotation.fields.project_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.quotation.fields.amount_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.quotation.fields.description_helper') }}
@if($errors->has('file'))
{{ $errors->first('file') }}
@endif {{ trans('cruds.quotation.fields.file_helper') }}
@foreach(App\Models\Quotation::STATUS_RADIO as $key => $label)
status) === (string) $key ? 'checked' : '' }} required>
@endforeach @if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.quotation.fields.status_helper') }}
@endsection @section('scripts') @endsection