@extends('client.layouts.main') @section('title', 'My Profile') @section('content')
Profile Information
@csrf @method('PUT')
@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
@if ($errors->has('phone')){{ $errors->first('phone') }}@endif
@if ($errors->has('company')){{ $errors->first('company') }}@endif
@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('state')){{ $errors->first('state') }}@endif
@if ($errors->has('postal_code')){{ $errors->first('postal_code') }}@endif
@if ($errors->has('country_code')){{ $errors->first('country_code') }}@endif
@if ($errors->has('currency_code')){{ $errors->first('currency_code') }}@endif
Comma-separated. Notifications will be sent to your primary email plus these.
Comma-separated. SMS will be sent to your primary phone plus these.
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