@extends('layouts.dashboard.main') {{-- content --}} @section('content') {!! Form::open($form) !!} {!! __("lang.application.wifi.title") !!} 端末種別と利用目的を指定してください @for($i = 0; $i < Session::get('application.wifi.count'); $i++) {!! $i + 1 !!}台目 利用端末 端末種別 @foreach($device_list as $key => $value) {!! Form::radio("wifi[device][{$i}]", $key, ($key == 1) ? true : false, [ 'class' => 'btn-check', 'id' => "device{$i}-{$key}", ]) !!} {!! $value !!} @endforeach 利用目的 @foreach($usage_list as $key => $value) {!! Form::radio("wifi[usage][{$i}]", $key, ($key == 1) ? true : false, [ 'class' => 'btn-check', 'id' => "usage{$i}-{$key}", ]) !!} {!! $value !!} @endforeach @endfor 連絡事項があれば記入ください {!! Form::textarea('wifi[remark]', '', [ 'class' => 'form-control', 'rows' => 6, ]) !!} {!! __("lang.button.confirm") !!} {!! __("lang.button.reset") !!} {!! Form::close() !!} @endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop
端末種別と利用目的を指定してください
連絡事項があれば記入ください