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

{{$section->title}}

{{-- @include('admin.components.alert') --}}
{!! Form::model($subcategory, ['route' => $section->route, 'class' => 'form-validate', 'files' => true, 'enctype' => 'multipart/form-data', 'autocomplete' => 'off']) !!} @method($section->method)
{!! Form::select('category_id',$categories,null, ['class' => 'form-control form-select select2']); !!}
{!! Form::text('name', null, ['class' => 'form-control category_name', 'placeholder' => 'Category Name', 'required' => 'required', 'id' => 'name']) !!} {!! Form::hidden('slug', null, ['class' => 'form-control category_slug', 'placeholder' => 'Category Slug', 'required' => 'required', 'id' => 'name']) !!}
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
{!! Form::file('image', ['class' => 'custom-file-input', 'id' => 'customFile']) !!}
@if ($errors->has('image'))

{{ $errors->first('image') }}

@endif
@if($section->method == "PUT")
{!! Form::select('status', ['1' => 'Active', '0' => 'Inactive'], null, ['class' => 'form-control form-select select2']); !!}
@endif
{!! Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-outline-primary']) !!}
{!! Form::close() !!}
@section('scripts') @endsection @endsection