@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.document.title_singular') }}
id]) }}" method="POST" enctype="multipart/form-data"> @csrf @method('PUT')
@if($errors->has('project_id'))

{{ $errors->first('project_id') }}

@endif
@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') @stop