@extends('web.layouts.app') @section('title','حسابي') @section('content')
{{csrf_field()}}

الاسم الاول

@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
{{csrf_field()}}

كلمة مرور جديدة

@if ($errors->has('password')) {{ $errors->first('password') }} @endif

تاكيد كلمة المرور الجديدة

@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection