@extends('layouts.app_layout') @section('title') Edit User @endsection @section('content') @include('inc.errors')
@csrf
Edit User - {{$user->full_name}}
Full Name
Please enter your first, second and last names.
Email
{{--
Email will be used .
--}}
is_active == 1) value = 1 checked @else {{(old('is_active') == 1) ? 'value = 1 checked' : ' value = 1 '}} @endif >
Is Active ?
allow_login == 1) value = 1 checked @else {{(old('allow_login') == 1) ? 'value = 1 checked' : ' value = 1 '}} @endif >
Allow Login ?
Roles and Permissions
{{ $user->user_name }}
{{-- Change Password --}} {{-- @csrf
Password
Be careful will writing your password and use complex password
New Password
Be careful will writing your password and use complex password
Confirm New Password
Password not matched
Submit
--}}
Business Location Name
@foreach ($business_locations as $business_location) {{--
address == '$business_location->id' ? 'selected' : '' }}>{{$business_location->business_name}}
--}}
business_id == $business_location->id ? 'selected' : '' }} @else {{ old('business_id') == $business_location->id ? 'selected' : '' }} @endif >{{$business_location->business_name}}
@endforeach
More Informations
Nationality
National Number
Address
City
State
Country
Landmark
Phone
Alternative Phone Number
Contact Number
Mother Language
@if ($user->image !== null)
@endif
Upload Image
Date Of Birth
Gender
gender == "Male" ? 'selected' : '' }} @else {{ old('gender') == "Male" ? 'selected' : '' }} @endif >Male
gender == "Female" ? 'selected' : '' }} @else {{ old('gender') == "Female" ? 'selected' : '' }} @endif >Female
Marital Status
gender == "Single" ? 'selected' : '' }} @else {{ old('marital_status') == "Single" ? 'selected' : '' }} @endif >Single
gender == "Married" ? 'selected' : '' }} @else {{ old('marital_status') == "Married" ? 'selected' : '' }} @endif >Married
gender == "Divorced" ? 'selected' : '' }} @else {{ old('marital_status') == "Divorced" ? 'selected' : '' }} @endif >Divorced
Blood Group
FaceBook Link
Twitter Link
Social Media Link
Social Media Link
{{--
Desc
Author Name
@foreach ($authors as $author)
{{$author->name}}
@endforeach
Price
Upload Image
--}}
Submit
{{-- Handle Changine the password --}}
Back To All
@endsection