@extends('layouts.admin') @section('content')

Create SEO Tasks

@include('includes.form_error')
{!! Form::open(['method' => 'PATCH', 'action'=> 'App\Http\Controllers\TaskSeoController@store','files'=>true]) !!}
{!! Form::label('Subject','Subject:') !!} {!! Form::text('subject', null, ['class' => 'form-control']) !!}
{!! Form::label('Assignment','Assignment:') !!} {!! Form::text('Assignment', null, ['class' => 'form-control']) !!}
{!! Form::label('file_id','File:') !!} {{-- {!! Form::file('file_id', null, ['class' => 'form-controll']) !!} --}}
{{--
{!! Form::label('Verification','Verification:') !!} {!! Form::checkbox('Verification', '1') !!}
--}}
{!! Form::label('Verification','Verification:') !!} {!! Form::select('Verification',array('pending'=>'pending','accept'=>'accept','reject'=>'reject'), null, ['class' => 'form-control']) !!}
{!! Form::label('deliverytime','deliverytime:') !!}
{!! Form::label('priority','Priority:') !!} {!! Form::select('Priority',array(3=>'3',2=>'2',1=>'1',0=>'urgent'), '0', ['class' => 'form-control']) !!}
{!! Form::label('assignTo','assignTo:') !!} {!! Form::select('assignment_id',$userList, null, ['class' => 'form-control']) !!}
{!! Form::label('dueon','dueon:') !!}
{!! Form::label('comment','comment:') !!} {!! Form::textarea('comment_user', null, ['class' => 'form-control']) !!}
{!! Form::submit('Create task', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop