{!! Form::open(['route' => 'autoisolir.store', 'method' => 'POST']) !!}
{!! Form::select('mikrotik_id', $mikrotiks, null, [
'placeholder' => __('autoisolir.placeholder.select-server'),
'class' => 'form-control',
'id' => 'server-dropdown',
]) !!}
@if ($errors->has('mikrotik_id'))
{{ $errors->first('mikrotik_id') }}
@endif
@if ($errors->has('profile_id'))
{{ $errors->first('profile_id') }}
@endif
@if ($errors->has('address_list_isolir'))
{{ $errors->first('address_list_isolir') }}
@endif
{!! Form::text('name', null, ['placeholder' => __('autoisolir.placeholder.name'), 'class' => 'form-control']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('activation_date'))
{{ $errors->first('activation_date') }}
@endif
@if ($errors->has('due_date'))
{{ $errors->first('due_date') }}
@endif
@if ($errors->has('comment_payment'))
{{ $errors->first('comment_payment') }}
@endif
@if ($errors->has('comment_unpayment'))
{{ $errors->first('comment_unpayment') }}
@endif