@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.document.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.document.fields.name_helper') }}
@if($errors->has('file'))
{{ $errors->first('file') }}
@endif {{ trans('cruds.document.fields.file_helper') }}
@if($errors->has('observaciones'))
{{ $errors->first('observaciones') }}
@endif {{ trans('cruds.document.fields.observaciones_helper') }}
@endsection @section('scripts') @endsection