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

{{ __('Update Profile') }}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if (auth()->user()->image) img @else img @endif

{{ __('Image') }}

{{ __('Accepted Image Files') }}: JPEG, JPG, PNG
{{ __('Accepted Size') }}: 300 x 300 (1MB)

@updateButton
@endsection @push('style') @endpush @push('script') @endpush