@extends("admin.layouts.app") @section("styles") @endsection @section("content")
New Accessory Category
@isset($errors) @foreach($errors as $key => $error) @endforeach @endisset
{{Form::open(['route'=>"admin.accessory-categories.store",'role'=>"form",'files'=>true])}}
{{Form::text("title",NULL,['class'=>'form-control m-input'])}} {{Form::label("title","Title")}}
{{Form::text("slug",NULL,['class'=>'form-control m-input'])}} {{Form::label("slug","Slug")}}
{{Form::text("nickname",NULL,['class'=>'form-control m-input'])}} {{Form::label("nickname","Nickname")}}
{{Form::text("icon",NULL,['class'=>'form-control m-input'])}} {{Form::label("icon","Icon")}}
{{Form::file("image",['class'=>'form-control m-input'])}} {{Form::label("image",trans("constants.icon"))}}
{!! Form::close() !!}
@endsection @section("scripts") @endsection