@extends('layouts.admin.app') @section('title') Edit User @stop @section('main')
{!! Form::open(['method'=>'PUT','action' => ['AdminUsersController@update', $user->id]]) !!}
{!! Form::label('first_name', 'First Name') !!} {!! Form::text('first_name', $user->first_name, ['class'=>'form-control', 'placeholder'=>'First Name']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::label('last_name', 'Last Name') !!} {!! Form::text('last_name', $user->last_name, ['class'=>'form-control', 'placeholder' =>'Last Name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::label('email', 'Email') !!} {!! Form::email('email', $user->email, ['class'=>'form-control', 'placeholder' =>'Email','disabled']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('phone_number', 'Phone Number') !!} {!! Form::text('phone_number', $user->phone_number, ['class'=>'form-control', 'placeholder' =>'Phone Number']) !!} @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
{!! Form::label('company', 'Company') !!} {!! Form::text('company', $user->company, ['class'=>'form-control', 'placeholder' =>'Company']) !!} @if ($errors->has('company')) {{ $errors->first('company') }} @endif
{!! Form::label('address', 'Address') !!} {!! Form::text('address', $user->address, ['class'=>'form-control', 'placeholder' =>'Address']) !!} @if ($errors->has('address')) {{ $errors->first('address') }} @endif
{!! Form::label('city', 'City') !!} {!! Form::text('city', $user->city, ['class'=>'form-control', 'placeholder' =>'City']) !!} @if ($errors->has('city')) {{ $errors->first('city') }} @endif
{!! Form::label('state_id', 'State') !!} {!! Form::select('state_id', $states, $user->state_id,['class'=>'form-control', 'placeholder'=>'Select State']) !!} @if ($errors->has('state_id')) {{ $errors->first('state_id') }} @endif
{!! Form::label('zip', 'Zip Code') !!} {!! Form::text('zip', $user->zip, ['class'=>'form-control', 'placeholder' =>'Zip Code']) !!} @if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
@if($user->role_id != 1)
{!! Form::label('task', 'Select Task Department(s)') !!}
Put only if ROLE is neither Admin or Customer {!! Form::select('task[]', $departments, $task_only, ['class'=>'form-control select2','multiple' => 'multiple','data-placeholder'=>'Select Departments','style'=>'width:100%;overflow:auto']); !!}
{!! Form::label('task_notification', 'Task Notification') !!} {!! Form::select('task_notification', ['1'=>'Yes','0'=>'No'], $user->task_notification,['class'=>'form-control', 'placeholder'=>'Select']) !!} @if ($errors->has('task_notification')) {{ $errors->first('task_notification') }} @endif
@endif
{!! Form::label('role_id', 'Role') !!} {!! Form::select('role_id', $roles, $user->role_id,['class'=>'form-control', 'placeholder'=>'Select Role']) !!} @if ($errors->has('role_id')) {{ $errors->first('role_id') }} @endif
{!! Form::label('password', 'Password') !!} {!! Form::password('password', ['class'=>'form-control', 'placeholder' =>'Password']) !!} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{!! Form::label('password_confirmation', 'Confirm Password') !!} {!! Form::password('password_confirmation', ['class'=>'form-control', 'placeholder' =>'Confirm password']) !!} @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
Go Back {!! Form::submit('Update User', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop