@extends('digitalmenu::layouts.app') @section('title', 'My Profile | Merchant Central') @section('content')
Account

My Profile

Update your personal information.

@if ($errors->any())
error
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Avatar --}}
@if ($staff->picture_url) Profile @else person @endif
photo_camera

{{ $staff->name }}

{{ $staff->username }}

{!! csrf_field() !!} {{-- Full Name --}}
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
{{-- Email --}}
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
{{-- Phone --}}
@include('digitalmenu::partials.phone_country_selector', ['phoneValue' => old('phone', $staff->phone)]) @if ($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
{{-- Username (read-only) --}}
Change Password
@endsection @section('scripts') @endsection