52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
@extends('layouts.app')
|
|
@section('title', '[東京都|〇〇駐輪場] オペレータマスタ')
|
|
|
|
@section('content')
|
|
<div class="content-header"></div>
|
|
<div class="container-fluid">
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
<form method="post" action="{{ route('ope_add') }}">
|
|
@csrf
|
|
@include('admin.opes._form', [
|
|
'isEdit' => 0,
|
|
'isInfo' => 0,
|
|
// 必要な初期値を空で渡す
|
|
'ope_name' => '',
|
|
'login_id' => '',
|
|
'ope_pass' => '',
|
|
'ope_belong' => '',
|
|
'ope_type' => '',
|
|
'ope_mail' => '',
|
|
'ope_phone' => '',
|
|
'ope_sendalart_que1' => '',
|
|
'ope_sendalart_que2' => '',
|
|
'ope_sendalart_que3' => '',
|
|
'ope_sendalart_que4' => '',
|
|
'ope_sendalart_que5' => '',
|
|
'ope_sendalart_que6' => '',
|
|
'ope_sendalart_que7' => '',
|
|
'ope_sendalart_que8' => '',
|
|
'ope_sendalart_que9' => '',
|
|
'ope_sendalart_que10' => '',
|
|
'ope_sendalart_que11' => '',
|
|
'ope_sendalart_que12' => '',
|
|
'ope_sendalart_que13' => '',
|
|
'ope_auth1' => '',
|
|
'ope_auth2' => '',
|
|
'ope_auth3' => '',
|
|
'ope_auth4' => '',
|
|
'ope_quit_flag' => '',
|
|
'ope_quitday' => '',
|
|
])
|
|
</form>
|
|
</div>
|
|
@endsection
|