0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

入力候補

Posted at
@section('stylesheet')
    {{-- style here --}}
    <link rel="stylesheet" type="text/css" href="{{ asset('common/css/jquery-ui.css').'?'.time()  }}">
@stop_od2 

<dt>{{ __('名前') }}</dt>
<dd>
<div class="{{ !empty($errors->first('bank_name')) ? 'has-error' : '' }}">
<input type="text" id="bank_name" name="bank_name" maxlength="50" data-api-url="{{ route('api.financial.get-bank-list') }}">
<p class="help-block">{{ !empty($errors->first('bank_name')) ? $errors->first('bank_name') : '' }}</p>
</div>
</dd>
<dt>{{ __('コード') }}<span class="tooltip" title="{{ __('・キャッシュカードまたは通帳記載の店番号を入力してください。<br>・ゆうちょ銀行の場合は、振込用の店番号を入力してください。') }}"></span>({{ __('半角数字3桁') }}) </dt>
<dd>
<div class="{{ !empty($errors->first('bank_branch_code')) ? 'has-error' : '' }}">
<input type="text" id="bank_branch_code" name="bank_branch_code" maxlength="3" class="half" data-api-url="{{ route('api.financial.get-branch-list') }}">
<p class="help-block">{{ !empty($errors->first('bank_branch_code')) ? $errors->first('bank_branch_code') : '' }}</p>
</div>
</dd>



@section('script')
<script type="text/javascript" src="{{ asset('common/js/jquery-ui.js').'?'.time() }}"></script>
<script type="text/javascript" src="{{ asset('pages/contract/changeconfirm.js') }}"></script>
@stop


























0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?