@extends('layouts.app')
@section('title', 'Edit Report | ')
@section('content')
{{ Form::open(array('url' => '/report/update', 'files' => true)) }}
Edit your work report
Make sure your report detail should be clear and relevant to task.
Add file
@if(count($files) > 0)
@foreach($files as $item)
×
{{$item->file_name}}
@endforeach
@endif
{!! Form::close() !!}
@stack('scripts')
@endsection