@extends('admin.layouts.master') @section('title','Edit Student') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Home') }} @endslot @slot('menu1') {{ __('Admin') }} @endslot @slot('menu2') {{ __(' Edit Student') }} @endslot @slot('button')
{{ __('Back') }}
@endslot @endcomponent
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Edit') }} {{ __('User') }}
{{ csrf_field() }} {{ method_field('PUT') }}
{{ __('FirstName') }}:
*
{{ __('Mobile') }}:
{{ __('Address') }}:
{{ $user->address }}
{{ __('State') }}:
{{ __('Pincode') }}:
{{ __('Select Role') }}:
*
{{ __('Please') }} {{ __('Select an Option') }}
{{ __('User') }}
{{ __('LastName') }}:
*
{{ __('Email') }}:
*
{{ __('City') }}:
{{ __('Country') }}:
{{ __('Image') }}:
{{ __('Recommended size') }} (410 x 410px)
Upload
Choose file
@if($user->user_img != null || $user->user_img !='')
@else
@endif
{{ __('Image') }}:
*
{{ __('Recommended-size') }} (410 x 410px)
{{ __('Upload') }}
{{ __('Choose file') }}
@if($user->user_img != null || $user->user_img !='')
@else
@endif
{{ __('Detail') }}:
*
{{ $user->detail }}
{{ __('FacebookUrl') }}:
{{ __('YoutubeUrl') }}:
{{ __('TwitterUrl') }}:
{{ __('LinkedInUrl') }}:
{{ __('Verified') }}:
*
email_verified_at != NULL ? 'checked' : '' }} />
{{ __('Status') }}:
*
status == '1' ? 'checked' : '' }} />
{{ __('UpdatePassword') }}:
{{ __('Password') }}
{{ __('ConfirmPassword') }}
{{ __('Reset') }}
{{ __('Update') }}
@endsection @section('scripts') @endsection