@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.quotation.title_singular') }}
@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)
@endforeach @if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.quotation.fields.status_helper') }}
@endsection @section('scripts') @endsection