@extends('layouts.customadmin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.task.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.task.fields.name_helper') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif {{ trans('cruds.task.fields.description_helper') }}
@if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.task.fields.status_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('tags')) {{ $errors->first('tags') }} @endif {{ trans('cruds.task.fields.tag_helper') }}
@if($errors->has('attachment')) {{ $errors->first('attachment') }} @endif {{ trans('cruds.task.fields.attachment_helper') }}
@if($errors->has('due_date')) {{ $errors->first('due_date') }} @endif {{ trans('cruds.task.fields.due_date_helper') }}
@if($errors->has('assigned_to')) {{ $errors->first('assigned_to') }} @endif {{ trans('cruds.task.fields.assigned_to_helper') }}
@endsection @section('scripts') @endsection