@extends('admin.layouts.master') @section('title','Edit Instructor') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Home') }} @endslot @slot('menu1') {{ __('Admin') }} @endslot @slot('menu2') {{ __(' Edit Instructor') }} @endslot @slot('button')
{{ __('Back') }}
@endslot @endcomponent
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Edit') }} {{ __('Instructor') }}
{{ csrf_field() }} {{ method_field('PUT') }}
{{ __('FirstName') }}:
*
{{ __('LastName') }}:
*
{{ __('Mobile') }}:
{{ __('Email') }}:
*
{{ __('Address') }}:
{{ $user->address }}
{{ __('UpdatePassword') }}:
{{ __('Password') }}
{{ __('ConfirmPassword') }}
{{ __('Twitter Url') }}:
{{ __('LinkedIn Url') }}:
{{ __('Detail') }}:
*
{{ $user->detail }}
{{ __('Verified') }}:
*
email_verified_at != NULL ? 'checked' : '' }} />
{{ __('Status') }}:
*
status == '1' ? 'checked' : '' }} />
{{ __('Reset') }}
{{ __('Update') }}
@endsection @section('scripts') @endsection