@extends('layouts.lookatme') @section('title', trans('message.my_profile')) @section('content')

{{ trans('message.my_profile') }}


@include('templates.lookatme.components.alert') @if($errors->any()) @foreach($errors->all() as $error)
{{ $error }}
@endforeach @endif
{{ csrf_field() }}
@include('templates.lookatme.components.input', [ 'label' => 'Name', 'type' => 'text', 'name' => 'name', 'value' => $customer_info->name, 'text' => trans('message.name'), 'icon' => 'fa fa-user', 'classLabel' => 'tw-col-span-3', 'class'=>'tw-col-span-9' ])
date_of_birth)) disabled @endif id="date_of_birth" placeholder="{{ trans('message.birth_date') }}">
@include('templates.lookatme.components.input', [ 'label' => 'Email', 'type' => 'email', 'name' => 'email', 'value' => $customer_info->email, 'id' => 'email', 'text' =>trans('message.email_address'), 'icon' => 'fa fa-thin fa-envelope', 'classLabel' => 'tw-col-span-3', 'class'=>'tw-col-span-9' ]) @include('templates.lookatme.components.button', [ 'type' => 'submit', 'text' => 'Update', 'class'=>'tw-w-full tw-py-3 btn-dark tw-col-span-9 tw-col-start-4 tw-mt-4' ])

{{ trans('message.change_phone_number') }}

@{{ showTime }}

{{ trans('message.change_password') }}

{{ csrf_field() }}
@include('templates.lookatme.components.input', [ 'label' => trans('message.current_password'), 'type' => 'password', 'name' => 'current_password', 'text' => trans('message.current_password'), 'icon' => 'icon-lock3', 'classLabel' => 'tw-col-span-3', 'class'=>'tw-col-span-9' ]) @include('templates.lookatme.components.input', [ 'label' => trans('message.new_password'), 'type' => 'password', 'name' => 'password', 'text' => trans('message.new_password'), 'icon' => 'icon-lock3', 'classLabel' => 'tw-col-span-3', 'class'=>'tw-col-span-9' ]) @include('templates.lookatme.components.input', [ 'label' => trans('message.confirm_password'), 'type' => 'password', 'name' => 'password_confirmation', 'text' => trans('message.confirm_password'), 'icon' => 'icon-lock3', 'classLabel' => 'tw-col-span-3', 'class'=>'tw-col-span-9' ]) @include('templates.lookatme.components.button', [ 'type' => 'submit', 'text' => 'Change', 'class'=>'tw-w-full tw-col-span-9 tw-py-3 btn-dark tw-col-start-4' ])
@endsection @section('script') @endsection