@extends('layouts.app') @php $title = isset($users) ? 'Edit User' : 'Create User'; $type = config('constant.gender_type'); $categoryType = config('constant.category_type'); $imageValidation = config('constant.image_validation'); @endphp @section('title', $title) @section('content')

Users

{{ $title }}

@csrf @if (isset($users)) @method('PUT') @endif

Personal Information

@error('name') {{ $message }} @enderror
@error('user_name') {{ $message }} @enderror
(aspect ratio 110*110, Image size: 5MB)
@if (isset($users) && $users->profile_photo) Profile Image @endif
@error('email') {{ $message }} @enderror
@error('phone_number') {{ $message }} @enderror
@endsection @section('scripts') @endsection