@extends('user.layouts.app') @section('title', '必要情報') @section('header')

必要情報

@endsection @section('content')
{{ Form::open(["route"=>["user.vehicles.update_contract", ["contract"=>$contract->id]], "method"=>"put"]) }}
車両の売主名(エージェント様名ではありません)

※ご契約者のお振込先口座をご入力ください。

@foreach(config('const.contract_file_type') as $type => $title) @endforeach
売主の銀行名
売主の支店名
売主の口座種別
売主の口座名義
売主の口座番号
{{ $title }} @php $file = $contract->getFile($type); @endphp @if(is_object($file) && !empty($file->file_path) && Storage::disk('contract')->has($contract->id.'/'.$file->file_path)) @endif
引取先郵便番号 {{ $contract->getZipCode() }}
引取先郵便住所 {{ $contract->delivery_address }}
引取先電話番号 {{ $contract->attendance_tel }}

戻る

{{ Form::close() }}
@endsection