@extends('layouts.master') @section('title', 'Create Task') @section('content')
@section('breadcrumbs') @endsection
@include('admin.errors.error')
Create Task
{!! Form::open([ 'route' => 'admin.task.store', 'id' => 'createform', 'name' => 'createform', 'enctype' => 'multipart/form-data', ]) !!} @include('admin.task.common') {!! Form::close() !!}
@endsection @section('scripts') @endsection