@extends(Auth::check() && Auth::user()->role->layout == 1 ? 'layouts.admin' : 'layouts.employee') @section('head') @endsection @section('content')

{{trans('general.documentos')}}

{{trans('general.edit')}} {{trans('general.documento')}}

{!! Form::model($document, ['method' => 'PATCH', 'url' => 'documents/'.$document->id, 'files' => 'true']) !!} {!! Form::hidden('id', $document->id) !!} @include('documents.form') {!! Form::close() !!}
@endsection @section('foot') @endsection