@extends('backend.layouts.app') @section('title', 'Profile') @section('content')

{{ _trans('common.Profile') }}

@include('backend.partials.user_navbar')
User profile picture

{{ @$data['show']->name }}

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('birth_date'))
{{ $errors->first('birth_date') }}
@endif
@if ($errors->has('gender'))
{{ $errors->first('gender') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if (@$data['edit']->avatar_id) @endif @error('image') {{ $message }} @enderror
@csrf
@endsection @section('style') {{-- iziToast --}} @endsection @section('script') {{-- iziToast --}} @endsection