@extends('admin.layouts.main') @section('content')

User Profile

@include('admin.includes.alert')

Edit Profile

@csrf @method('PATCH')
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

Change Password

@csrf
@error('current_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@error('password_confirmation') {{ $message }} @enderror
@endsection