@extends('admin.layout.app') @section('style') @endsection @section('header') @endsection @section('content')
@csrf
{!! Form::select("city_id",Cities(),(array_key_exists('city_id', $search))? $search['city_id'] : null,['class'=>"form-control "])!!}
{!! Form::select("size",['' => 'اختر حجم السيارة', 'small' => 'صغيره', 'large' => 'كبيرة'],(array_key_exists('status', $search))? $search['status'] : null,['class'=>"form-control "])!!}
{!! Form::select("service",Services(),(array_key_exists('service', $search))? $search['service'] : null,['class'=>"form-control "])!!}
{!! Form::select("payment_type",['' => 'اختر نوع الدفع', 'cash' => 'كاش', 'online' => 'دفع الكتروني'],(array_key_exists('status', $search))? $search['status'] : null,['class'=>"form-control "])!!}
@endsection @section('script') @endsection