{!! Form::open(array('route' => 'customers.store','method'=>'POST')) !!}
{!! Form::select('mikrotik_id', $mikrotiks, null, array('placeholder' => 'Select Server','class' => 'form-control', 'id' => 'server-dropdown')) !!}
@if ($errors->has('mikrotik_id'))
{{ $errors->first('mikrotik_id') }}
@endif
@if ($errors->has('paket_id'))
{{ $errors->first('paket_id') }}
@endif
@if ($errors->has('internet_service'))
{{ $errors->first('internet_service') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('contact'))
{{ $errors->first('contact') }}
@endif
{!! Form::text('discount', null, array('placeholder' => __('customer.placeholder.discount'),'class' => 'form-control')) !!}
%
@if ($errors->has('discount'))
{{ $errors->first('discount') }}
@endif