@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Users Edit') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content')
@if (session()->has('success'))
{{ session()->get('success') }}
@endif
users avatar

Avatar

@csrf
@error('firstName')
{{ $errors->first('firstName') }}
@enderror
@error('email')
{{ $errors->first('email') }}
@enderror
@error('password')
{{ $errors->first('password') }}
@enderror
@error('lastName')
{{ $errors->first('lastName') }}
@enderror
@error('phone')
{{ $errors->first('phone') }}
@enderror
@error('comfirm_password')
{{ $errors->first('comfirm_password') }}
@enderror
{{--
Module Permission Read Write Create Delete
Users
Articles
Staff
--}}
Return
{{--
Social Links
Personal Info
--}}
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection