@extends('layouts.default') @section('styles') @stop @section('scripts') @include('cdn.datatables') @include('cdn.chosen') @stop @section('panel-heading') {{ $user->user_id == 0 ? 'Add User' : 'Edit User' }} @stop @section('content')

@if ($errors->has('email')) {{ $errors->first('email') }} @endif

@if ($errors->has('username')) {{ $errors->first('username') }} @endif

@if ($errors->has('user_role_id')) {{ $errors->first('user_role_id') }} @endif

@if ($errors->has('user_status_id')) {{ $errors->first('user_status_id') }} @endif

@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif

@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif

@if ($errors->has('association_unit_id')) {{ $errors->first('association_unit_id') }} @endif