@extends('dashboard.v1.index') @section('title', __('all.hotels')) @section('content')

{{__('all.hotels')}}

@csrf
@if ($errors->has('name_ar')) {{ $errors->first('name_ar') }} @endif
@if ($errors->has('name_en')) {{ $errors->first('name_en') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('website')) {{ $errors->first('website') }} @endif
@if ($errors->has('lat')) {{ $errors->first('lat') }} @endif
@if ($errors->has('lng')) {{ $errors->first('lng') }} @endif
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('hotel_category_id')) {{ $errors->first('hotel_category_id') }} @endif
@stop @section('scripts') @include('dashboard.v1.hotel.scripts') @endsection