@extends('Layouts.adminLayout') @section('title') {{__('Edit Profile')}} @endsection @section('breadcrumb')
@endsection @section('content')

{{__('Edit Profile')}}

{{$data['user']->name}}
@CSRF
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('family'))
{{ $errors->first('family') }}
@endif
@if ($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
@if ($errors->has('national_identity'))
{{ $errors->first('national_identity') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('birth_date'))
{{ $errors->first('birth_date') }}
@endif
@endsection