@extends('layouts.app') @section('title', 'Create Report | ') @section('content')
{{ Form::open(array('url' => '/report/save', 'files' => true,'name'=>'reportForm','id'=>'reportForm')) }}

Submit your work report

Make sure your report detail should be clear and relevant to the task.

Reporting Date :

Please enter the required data.

{!! Form::textarea('other_description', null, ['class' => 'form-control summernote2', 'placeholder' => 'Report description...']) !!} @if ($errors->has('description'))
{{ $errors->first('description') }}
@endif

Attachment


Add file
{!! Form::close() !!}

@stack('scripts') @endsection