@extends('layouts.main') @section('title') Categories @endsection @section('page-title')

@yield('title')

@endsection @section('content')

Create Category

{!! Form::open(['url' => route('categories.store'), 'data-parsley-validate', 'files' => true]) !!}
{{-- Category --}}
{{ Form::label('category', __('Category'), ['class' => 'form-label text-center']) }} {{ Form::text('category', '', [ 'class' => 'form-control', 'placeholder' => 'Category', 'data-parsley-required' => 'true', ]) }}
{{-- Facilities --}}
{{ Form::label('type', __('Facilities'), ['class' => 'form-label text-center']) }}
{{-- Image --}}
{{ Form::label('image', __('Image'), ['class' => 'form-label text-center']) }} {{ Form::file('image', ['class' => 'form-control', 'data-parsley-required' => 'true', 'accept' => '.svg']) }}
{{-- Meta Title --}}
{{ Form::label('title', __('Meta Title'), ['class' => 'form-label text-center']) }}
0
{{-- Meta Keywords --}}
{{ Form::label('title', __('Meta Keywords'), ['class' => 'form-label text-center']) }}
{{-- Meta Description --}}
{{ Form::label('description', __('Meta Description'), ['class' => 'form-label text-center']) }}
0
{{ Form::submit('Save', ['class' => 'btn btn-primary me-1 mb-1']) }}
{!! Form::close() !!}
{{ __('ID') }} {{ __('Category') }} {{ __('Image') }} {{ __('Facilities') }} {{ __('Meta Title') }} {{ __('Meta Description') }} {{ __('Meta Keywords') }} {{ __('Enable/Disable') }} {{ __('Action') }}
@endsection @section('script') {{-- --}} @endsection