@extends('layouts.admin') @php $profile=asset(Storage::url('uploads/avatar/')); @endphp @section('page-title') {{__('Profile Account')}} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('content')
{{('System Setting')}}
{{Form::model($userDetail,array('route' => array('customer.update.profile'), 'method' => 'post', 'enctype' => "multipart/form-data"))}} @csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
{{ __('Please upload a valid image file. Size of image should not be more than 2MB.')}} @error('avatar') {{ $message }} @enderror
{{('Billing Info')}}
{{Form::model($userDetail,array('route' => array('customer.update.billing.info'), 'method' => 'post'))}} @csrf
{{Form::label('billing_name',__('Billing Name'),array('class'=>'form-label'))}} {{Form::text('billing_name',null,array('class'=>'form-control','placeholder'=>__('Enter Billing Name')))}} @error('billing_name') {{ $message }} @enderror
{{Form::label('billing_phone',__('Billing Phone'),array('class'=>'form-label'))}} {{Form::text('billing_phone',null,array('class'=>'form-control','placeholder'=>__('Enter Billing Phone')))}} @error('billing_phone') {{ $message }} @enderror
{{Form::label('billing_zip',__('Billing Zip'),array('class'=>'form-label'))}} {{Form::text('billing_zip',null,array('class'=>'form-control','placeholder'=>__('Enter Billing Zip')))}} @error('billing_zip') {{ $message }} @enderror
{{Form::label('billing_country',__('Billing Country'),array('class'=>'form-label'))}} {{Form::text('billing_country',null,array('class'=>'form-control','placeholder'=>__('Enter Billing Country')))}} @error('billing_country') {{ $message }} @enderror
{{Form::label('billing_state',__('Billing State'),array('class'=>'form-label'))}} {{Form::text('billing_state',null,array('class'=>'form-control','placeholder'=>__('Enter Billing State')))}} @error('billing_state') {{ $message }} @enderror
{{Form::label('billing_city',__('Billing City'),array('class'=>'form-label'))}} {{Form::text('billing_city',null,array('class'=>'form-control','placeholder'=>__('Enter Billing City')))}} @error('billing_city') {{ $message }} @enderror
{{Form::label('billing_address',__('Billing Address'),array('class'=>'form-label'))}} {{Form::textarea('billing_address',null,array('class'=>'form-control','rows'=>3,'placeholder'=>__('Enter Billing Address')))}} @error('billing_address') {{ $message }} @enderror
{{('Shipping Info')}}
{{Form::model($userDetail,array('route' => array('customer.update.shipping.info'), 'method' => 'post'))}} @csrf
{{Form::label('shipping_name',__('Shipping Name'),array('class'=>'form-label'))}} {{Form::text('shipping_name',null,array('class'=>'form-control','placeholder'=>__('Enter Shipping Name')))}} @error('shipping_name') {{ $message }} @enderror
{{Form::label('shipping_phone',__('Shipping Phone'),array('class'=>'form-label'))}} {{Form::text('shipping_phone',null,array('class'=>'form-control','placeholder'=>__('Enter Shipping Phone')))}} @error('shipping_phone') {{ $message }} @enderror
{{Form::label('shipping_zip',__('Shipping Zip'),array('class'=>'form-label'))}} {{Form::text('shipping_zip',null,array('class'=>'form-control','placeholder'=>__('Enter Shipping Zip')))}} @error('shipping_zip') {{ $message }} @enderror
{{Form::label('shipping_country',__('Shipping Country'),array('class'=>'form-label'))}} {{Form::text('shipping_country',null,array('class'=>'form-control','placeholder'=>__('Enter Shipping Country')))}} @error('shipping_country') {{ $message }} @enderror
{{Form::label('shipping_state',__('Shipping State'),array('class'=>'form-label'))}} {{Form::text('shipping_state',null,array('class'=>'form-control','placeholder'=>__('Enter Shipping State')))}} @error('shipping_state') {{ $message }} @enderror
{{Form::label('shipping_city',__('Shipping City'),array('class'=>'form-label'))}} {{Form::text('shipping_city',null,array('class'=>'form-control','placeholder'=>__('Enter Shipping City')))}} @error('shipping_city') {{ $message }} @enderror
{{Form::label('shipping_address',__('Shipping Address'),array('class'=>'form-label'))}} {{Form::textarea('shipping_address',null,array('class'=>'form-control','rows'=>3,'placeholder'=>__('Enter Shipping Address')))}} @error('shipping_address') {{ $message }} @enderror
{{('Change Password')}}
@csrf
@error('old_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@endsection