Sipariş Talep Formu
@if(Session::has('message'))
{{ Former::textarea('message')->placeholder('Notunuz')->label(false)->rows(7) }}
{{ Former::close() }}
@endif
{{ Session::get('message') }}
@else
{{ Former::open()->method('POST')->action(URL::to('siparis')) }}
{{ Former::text('name')->placeholder('İsim - Soyisim')->required(true)->label(false) }}
{{ Former::email('email')->placeholder('E-Posta Adresiniz')->label(false) }}
{{ Former::text('company')->placeholder('Firma Adı')->required(true)->label(false) }}
{{ Former::text('phone')->placeholder('Telefon Numaranız')->required(true)->label(false) }}
{{ Former::text('address')->placeholder('Adresiniz')->label(false) }}
BANKA HESAP BİLGİLERİMİZ
-
@foreach(OrderBank::all() as $bank)
{{ $bank->title }}
{{ nl2br($bank->value) }}
@endforeach