@extends('layouts.main') @section('content')
ユーザー登録
{{ csrf_field() }}
{{ Form::select('company_id', $company, '0', ['class' => 'validate[required] form-control', 'id' => 'company_id' ] ) }} @if ($errors->has('company_id')) {{ $errors->first('company_id') }} @endif
{{ Form::select('auth_level', $auth_level, '0', ['class' => 'validate[required] form-control', 'id' => 'auth_level' ] ) }} @if ($errors->has('auth_level')) {{ $errors->first('auth_level') }} @endif
@if ($errors->has('login_name')) {{ $errors->first('login_name') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection