@extends('layouts.form') @section('title') Edit User @endsection @section('form-title') {{ __('users.edit_user') }} @endsection @section('form-navigation')
  • {{ __('users.list_users') }}
  • {{ __('users.edit_user') }} - {{ $user->full_name }}
  • @endsection @section('form-tabs-li') @endsection @section('form-tabs-content')
    @csrf
    {{-- Basic Info Group --}}
    {{-- Full Name --}}
    {{-- Email --}}
    {{-- Is Active --}}
    {{-- Mobile Number --}}
    {{-- Alternative Mobile Number --}}
    {{-- Contact Number --}}
    {{-- Nationality --}}
    {{-- National Number --}}
    {{-- Upload Image --}}
    @if ($user->image !== null)
    {{ $user->full_name }}
    @else

    {{ __('users.no_user_image') }}

    @endif
    {{-- Date of Birth . . . --}}
    {{-- Gender --}}
    {{-- Blood Group --}}
    {{-- Mother Language --}}
    {{-- Marital Status --}}
    {{-- User Name --}}
    {{-- Change Password --}}
    {{-- Business Location Name --}}
    {{-- Address Info --}}
    {{-- Address --}}
    {{-- City --}}
    {{-- State --}}
    {{-- Country --}}
    {{-- Landmark --}}
    {{-- Socail Links --}}
    @endsection
    @csrf