@extends('admin.layouts.admin') @section('title') Admin | Edit profile @endsection @section('styles') @endsection @section('content')

Edit Profile

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if ($errors->has('name')) @endif
@if ($errors->has('email')) @endif
@if ($errors->has('phone')) @endif
@if ($errors->has('user_timezone')) @endif
@if ($errors->has('profile_image')) @endif @if($recordDetails['user_profile']['profile_image']) Profile image @endif
@endsection @section('scripts') @endsection