{!! Form::model($sub_task,['method' => 'PATCH','route' => ['sub-task.update',$sub_task] ,'class' => 'sub-task-edit-form','id' => 'sub-task-edit-form','data-table-refresh' => 'sub-task-table']) !!}
{!! Form::label('title',trans('messages.title'),[])!!}
{!! Form::input('text','title',$sub_task->title,['class'=>'form-control','placeholder'=>trans('messages.title')])!!}
{!! Form::textarea('description',$sub_task->description,['size' => '30x3', 'class' => 'form-control ', 'placeholder' => trans('messages.description'),'data-autoresize' => 1,"data-show-counter" => 1,"data-limit" => config('config.textarea_limit')])!!}
{!! Form::submit(trans('messages.save'),['class' => 'btn btn-primary pull-right btn-sm']) !!}
{!! Form::close() !!}