@extends('admin/layouts/default') {{-- Page title --}} @section('title') Edit a user_type @parent @stop @section('content')

User Types

Edit user_type

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($user_type, ['method' => 'PATCH', 'action' => ['User TypesController@update', $user_type->id]]) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('status_code', 'Status Code: ') !!} {!! Form::select('status_code', $status, null, ['class' => 'form-control']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop