@extends('packer.layouts.master') @section('title', 'Edit Users') @section('content')

{{ __('User Edit') }}

{{ __('Edit User & Role') }}

@csrf
@if ($errors->has('image'))

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

@endif
@if ($errors->has('name'))

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

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

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

@endif
@if ($errors->has('phone'))

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

@endif
@if ($errors->has('whatsapp_no'))

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

@endif
@if ($errors->has('status'))

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

@endif
@if ($errors->has('role_id'))

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

@endif
@if ($errors->has('address'))

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

@endif
@if ($errors->has('designation'))

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

@endif
@endsection