@extends('admin.layouts.master') @section('title', 'Edit User - Admin') @section('body') @if ($errors->any())
@endif
@include('admin.message')

{{ __('adminstaticword.Edit') }} {{ __('adminstaticword.Users') }}


{{ csrf_field() }} {{ method_field('PUT') }}


{{-- --}}


gender == 'm' ? 'checked' : '' }}> {{ __('adminstaticword.Male') }} gender == 'f' ? 'checked' : '' }}> {{ __('adminstaticword.Female') }} gender == 'o' ? 'checked' : '' }}> {{ __('adminstaticword.Other') }}
@if(Auth::User()->role=="admin") @endif @if(Auth::User()->role=="instructor") @endif @if(Auth::User()->role=="user") @endif


  • email_verified_at != NULL ? 'checked' : '' }}>
  • status == '1' ? 'checked' : '' }} >


  • @if($user->user_img != null || $user->user_img !='')
    User Image
    @else
    User Image
    @endif



    {{ __('adminstaticword.SocialProfile') }}






    @endsection @section('scripts') @endsection