@extends("admin.layouts.app") @section("styles") @endsection @section("content")
New Specs
{{Form::open(['route'=>"admin.specs.store",'role'=>"form"])}}
{{Form::label("spec_category","Spec Category")}} {{Form::select("spec_category",$spec_categories,NULL,['class'=>"select2 form-control","id"=>"categories"])}}
{{Form::text("title",NULL,['class'=>'form-control m-input'])}} {{Form::label("title","Listing Title")}}
{{Form::text("short_title",NULL,['class'=>'form-control m-input'])}} {{Form::label("short_title","Short Title")}}
{{Form::text("nickname",null,['class'=>'form-control m-input'])}} {{Form::label("nickname","Nickname")}}
{{Form::textarea("description",NULL,['class'=>'form-control m-input'])}} {{Form::label("description","Description")}}
{{Form::label("items","Items")}} {{Form::select("items[]",[],null,["class"=>"select2-multiple",'id'=>"items","multiple"=>"multiple",'style'=>"width:100%"])}}
{!! Form::close() !!}
@endsection @section("scripts") @endsection