@extends('client.layouts.main') @section('title', 'My Profile') @section('content')
Profile Information
@csrf @method('PUT')
@if ($errors->has('address_line_1')){{ $errors->first('address_line_1') }}@endif
@if ($errors->has('address_line_2')){{ $errors->first('address_line_2') }}@endif
@if ($errors->has('city')){{ $errors->first('city') }}@endif
@if ($errors->has('currency_code')){{ $errors->first('currency_code') }}@endif
Change Password
@csrf @method('PUT')
@if ($errors->has('current_password')){{ $errors->first('current_password') }}@endif
@if ($errors->has('password')){{ $errors->first('password') }}@endif
Password Requirements:
  • Minimum 8 characters
  • At least one uppercase letter (A-Z)
  • At least one lowercase letter (a-z)
  • At least one number (0-9)
  • At least one special character (!@#$...)
@endsection @push('scripts') @include('partials.password-rules-js', ['inputId' => 'new_password']) @endpush