@extends('managers.layout.master') @section('title', 'البيانات الشخصية') @section('content')
البيانات الشخصية
البيانات الشخصية
@include('admin.layout.message')
@csrf
الإسم الأول
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
الإسم العائلة
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
رقم الجوال
@if ($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
البريد الألكتروني
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{--
--}} {{--
مبلغ التأمين
--}} {{--
برجاء ادخال مبلغ التأمين إذا تطلبه من الضيوف
--}} {{--
--}} {{-- @if ($errors->has('security_deposit'))--}} {{--
{{ $errors->first('security_deposit') }}
--}} {{-- @endif--}} {{--
--}}
تاريخ الميلاد
@if ($errors->has('birthday'))
{{ $errors->first('birthday') }}
@endif
المدينة
برجي اختيار المدينة
@foreach(\App\Models\City::where('parent_id',null)->get() as $city)
city_id == $city->id ? "selected" : ""}} value="{{$city->id}}">{{$city->name['ar']}}
@endforeach
@if ($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
الصورة
تعديل
@stop