@extends("layout.app") @section("styles") @endsection @section("content")

احجز جهاز

{{Form::open(['url' => route("reserve-store"), 'role' => "form"])}}
{{Form::label("name",trans("constants.name"))}} {{Form::text("name",NULL,['class'=>'form-control m-input'])}}
{{Form::label("mobile",trans("constants.mobile"))}} {{Form::text("mobile",NULL,['class'=>'form-control m-input'])}}
{{Form::label("address",trans("constants.address"))}} {{Form::text("address",NULL,['class'=>'form-control m-input'])}}
{{Form::label("item_id",trans("constants.items"))}} {{Form::select("item_id",$items,NULL,['class'=>'form-control select2-multiple'])}}
{!! Form::close() !!}
@endsection @section("scripts") @endsection