@extends('layouts.app') @section('content')

Update Your Details

@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@method('PATCH') @csrf
@error('first_name') {{ $message }} @enderror
@error('surname') {{ $message }} @enderror


@error('address') {{ $message }} @enderror @error('address2') {{ $message }} @enderror
@error('city') {{ $message }} @enderror
@error('state') {{ $message }} @enderror
@error('postcode') {{ $message }} @enderror
@error('phone_number') {{ $message }} @enderror

You can update both your email address and password, or just your email address, or just your password. If you wish to change your password, enter a new password of at least 8 characters.

@error('email') {{ $message }} @enderror
@error('email_confirmation') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@error('password_confirmation') {{ $message }} @enderror

If you would like to remove all your information from our database, then please click this link. However, be aware that, all your login, contact and order information will be permanently removed.
Permanently Delete My Account
@endsection