@extends('admin.layout.master') @section('title', 'User Manager') @section('content')

Edit User

@csrf
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('state')) {{ $errors->first('state') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('zipcode')) {{ $errors->first('zipcode') }} @endif
@if ($errors->has('image'))

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

@endif
Only *.png, *.jpg and *.jpeg image files are accepted
Back
@endsection @push('js') @endpush