@extends('layouts.dashboard.main') {{-- content --}} @section('content') {!! Form::open($form) !!} {!! Form::hidden('foreigner_practice[dtb_foreigner_practice_id]', $dtb_foreigner_practice_id) !!} {!! Form::hidden('foreigner_practice[dtb_staff_id]', $staff['dtb_staff_id']) !!} {!! Form::hidden('foreigner_practice[mtb_kaigo_id]', $staff['mtb_kaigo_id']) !!} {!! Form::hidden('staff_code', $staff['staff_code']) !!}
{!! Form::text("foreigner_practice[destination]", (isset($foreigner_practice)) ? $foreigner_practice['destination'] : '', [ 'class' => 'form-control', ]) !!}
{!! Form::select("foreigner_practice[mtb_practice_id]", $practice_list, (isset($foreigner_practice)) ? $foreigner_practice['mtb_practice_id'] : '', [ 'class' => 'form-select', ]) !!}
{!! Form::date("foreigner_practice[from]", (isset($foreigner_practice)) ? $foreigner_practice['from'] : '', [ 'class' => 'form-control', ]) !!}
{!! Form::date("foreigner_practice[to]", (isset($foreigner_practice)) ? $foreigner_practice['to'] : '', [ 'class' => 'form-control', ]) !!}
{!! Form::textarea("foreigner_practice[remark]", (isset($foreigner_practice)) ? $foreigner_practice['remark'] : '', [ 'class' => 'form-control', 'rows' => 4, ]) !!}
{!! __("lang.button.back") !!}
{!! Form::close() !!} @endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop