@extends('layouts.seller') @section('content')
{!! Form::model($result, ['route' => ['seller.checklist-category.update', $result->id], 'method' => 'POST', 'id' => 'ajaxSave', 'files' => true]) !!}
{!! Form::label('name', __('checklist_category.name'), ['class' => 'control-label mb-2']) !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => __('checklist_category.please_insert_name')]) !!}
  • {{--
  • --}}
{!! Form::close() !!}
@endsection