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

{{ $section->title }}

{{-- @include('admin.components.alert') --}}
{!! Form::model($category, [ 'class' => 'form-validate', 'files' => true, 'enctype' => 'multipart/form-data', 'autocomplete' => 'off']) !!}
{!! Form::text('categories_name', null, ['class' => 'form-control', 'placeholder' => 'Category Name', 'required' => 'required', 'id' => 'name','disabled']) !!}
{!! Form::textarea('banner_heading', null, ['class' => 'form-control content ckeditor', 'placeholder' => 'Banner Heading', 'required' => 'required', 'id' => 'name','disabled']) !!}
{!! Form::textarea('banner_title', null, ['class' => 'form-control content ckeditor', 'placeholder' => 'Banner title', 'required' => 'required', 'id' => 'name','disabled']) !!}
{!! Form::file('banner', ['class' => 'custom-file-input', 'id' => 'customFile','disabled']) !!}
{!! Form::file('image', ['class' => 'custom-file-input ', 'id' => 'customFile','disabled']) !!}
{!! Form::select('flag',['flag' => 'coming-soon'],null,['class' => 'form-control form-select select2' , 'size' => 'please Select','disabled' ] ); !!}
{!! Form::select('status', ['1' => 'Active', '0' => 'Inactive'], null, ['class' => 'form-control form-select select2','disabled' ]); !!}
{!! Form::close() !!}
@section('scripts') @endsection @endsection