@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 Account {{-- Information --}} Avatar Change Reset @csrf @method('patch') First Name @error('firstName') {{ $errors->first('firstName') }} @enderror E-mail @error('email') {{ $errors->first('email') }} @enderror Role role == '0' ? 'selected' : '' }}>User role == '1' ? 'selected' : '' }}>Admin Last Name @error('lastName') {{ $errors->first('lastName') }} @enderror Phone @error('phone') {{ $errors->first('phone') }} @enderror Status status == '1' ? 'selected' : '' }}>Active status == '0' ? 'selected' : '' }}>Banned status == '0' ? 'selected' : '' }}>Close {{-- Module Permission Read Write Create Delete Users Articles Staff --}} Return Save changes @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection