@extends('web.layouts.layout') @section('content') @include('web.pages.components.header.header') @include('web.pages.profile.layout.sidebar') {{__('web.my_account')}} {{$percentage}}% {{__('web.hello')}} {{$user->name}} {{__('web.hello_desc')}} @method('PUT') @CSRF {{__('web.acc_details')}} {{__('web.email')}} {{__('web.first_name')}} {{__('web.last_name')}} {{__('web.phone')}} {{__('web.birth_date')}} {{__('web.gender')}} @foreach($genders as $row) gender) && $user->gender == $row ? 'checked' : ''}} value="{{$row}}" id="size{{$row}}"> {{__('web.genders.'.$row)}} @endforeach {{__('web.nationality')}} country_id) ? 'selected' : '' }} disabled>{{ __('web.choose_nationality') ?? 'Choose nationality' }} @foreach($countries as $row) country_id) && $user->country_id == $row->id ? 'selected' : '' }} value="{{ $row->id }}"> {{$row->title}} @endforeach {{__('web.update_account')}} @include('web.layouts.footer_banner') @endsection @section('inject_js') @endsection