@extends('layouts.admin') @section('content')
{{ trans('global.my_profile') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('ic_number'))
{{ $errors->first('ic_number') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if($errors->has('gender'))
{{ $errors->first('gender') }}
@endif
@if($errors->has('state_id'))
{{ $errors->first('state_id') }}
@endif
@if($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
@if($errors->has('contact_number'))
{{ $errors->first('contact_number') }}
@endif
{{--
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
--}}
{{ trans('global.change_password') }}
@csrf
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection @section('scripts') @endsection