@extends('layouts.admin') @section('content')
{{ csrf_field() }}
 
{!! FormField::select('document_type', $documentTypes, false, false, 'Please Select Document Type') !!}
 
 

Drop files here or click to upload.

 
 
 

@if($attachments) @foreach($attachments as $attachment) @endforeach @endif
Added Date Document Type Document Actions
{{ $attachment->created_at->format('m/d/Y') }} {{ $attachment->document_type }} {{ $attachment->filename }}
@endsection @section('scripts') @endsection