@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.

@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif

Attachment:


Add file
@if(count($files) > 0) @foreach($files as $item)
Preview ×

{{$item->file_name}}

@endforeach @endif
{!! Form::close() !!}
@stack('scripts') @endsection