@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.document.title_singular') }}
@method('POST') @csrf
@if($errors->has('project'))
{{ $errors->first('project') }}
@endif {{ trans('cruds.document.fields.project_helper') }}
@if($errors->has('document_file'))
{{ $errors->first('document_file') }}
@endif {{ trans('cruds.document.fields.document_file_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.document.fields.name_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.document.fields.description_helper') }}
@endsection @section('scripts') @endsection