{!! Form::label('name', 'الاسم') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Enter publisher name', 'required' => true]) !!}
{!! Form::label('user_name', 'اسم المستخدم') !!}
{!! Form::text('user_name', null, ['class' => 'form-control', 'placeholder' => 'Enter username', 'required' => true]) !!}
{!! Form::label('password', 'كلمة المرور') !!}
{!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'Enter password']) !!}
{!! Form::label('password_confirmation', 'تكرار كلمة المرور') !!}
{!! Form::password('password_confirmation', ['class' => 'form-control', 'placeholder' => 'Confirm password']) !!}
{!! Form::label('email', 'البريد الالكتروني') !!}
{!! Form::email('email', null, ['class' => 'form-control', 'placeholder' => 'Enter email address']) !!}
{!! Form::label('phone', 'الجوال') !!}
{!! Form::text('phone', null, ['class' => 'form-control', 'placeholder' => 'Enter phone number']) !!}
{!! Form::label('place_1', 'القاعة') !!}
{!! Form::select('place_1', blocks(), null, ['class' => 'form-control', 'placeholder' => 'Enter address line 1']) !!}
{!! Form::label('place_2', 'الجناح') !!}
{!! Form::select('place_2', sections(), null, ['class' => 'form-control', 'placeholder' => 'Enter address line 2']) !!}
{!! Form::label('fb', 'رابط الفيسبوك') !!}
{!! Form::text('fb', null, ['class' => 'form-control', 'placeholder' => 'Enter Facebook profile link']) !!}
{!! Form::label('tw', 'رابط تويتر') !!}
{!! Form::text('tw', null, ['class' => 'form-control', 'placeholder' => 'Enter Twitter profile link']) !!}
{!! Form::label('ins', 'رابط انستجرام') !!}
{!! Form::text('ins', null, ['class' => 'form-control', 'placeholder' => 'Enter Instagram profile link']) !!}
{!! Form::label('yube', 'رابط يوتيوب') !!}
{!! Form::text('yube', null, ['class' => 'form-control', 'placeholder' => 'Enter YouTube channel link']) !!}
{!! Form::label('wa', 'رابط الواتساب') !!}
{!! Form::url('wa', null, ['class' => 'form-control', 'placeholder' => "Enter book's WhatsApp link"]) !!}
{!! Form::label('te', 'رابط تليجرام') !!}
{!! Form::url('te', null, ['class' => 'form-control', 'placeholder' => "Enter book's Telegram link"]) !!}
{!! Form::label('url', 'رابط الموقع الالكتروني') !!}
{!! Form::text('url', null, ['class' => 'form-control', 'placeholder' => 'Enter website link']) !!}
{{--
{!! Form::label('exports', 'Exports') !!}
{!! Form::textarea('exports', null, ['class' => 'form-control', 'rows' => 2, 'placeholder' => 'Enter export details']) !!}
--}}
{!! Form::label('excerpt', 'الوصف المختصر') !!}
{!! Form::textarea('excerpt', null, ['class' => 'form-control', 'rows' => 2, 'placeholder' => 'Enter a short description']) !!}
{!! Form::label('about', 'الوصف الكامل') !!}
{!! Form::textarea('about', null, ['class' => 'form-control mytextarea', 'rows' => 3, 'placeholder' => 'Enter details about the publisher']) !!}