@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@foreach ($inputs as $input)
@if ($input->type == 1)
name") }}"
class="form_control">
@if ($errors->has("$input->name"))
{{ $errors->first("$input->name") }}
@endif
@endif
@if ($input->type == 2)
@if ($errors->has("$input->name"))
{{ $errors->first("$input->name") }}
@endif
@endif
@if ($input->type == 3)
@if ($errors->has("$input->name"))
{{ $errors->first("$input->name") }}
@endif
@endif
@if ($input->type == 4)
@if ($errors->has("$input->name"))
{{ $errors->first("$input->name") }}
@endif
@endif
@if ($input->type == 6)
name") }}"
placeholder="{{ $input->placeholder }}" autocomplete="off">
@if ($errors->has("$input->name"))
{{ $errors->first("$input->name") }}
@endif
@endif
@if ($input->type == 7)
name") }}"
placeholder="{{ $input->placeholder }}" autocomplete="off">
@if ($errors->has("$input->name"))
{{ $errors->first("$input->name") }}
@endif
@endif
@if ($input->type == 5)
**
{{ $keywords['Only_zip_file_is_allowed'] ?? 'Only zip file is allowed' }}
@if ($errors->has("$input->name"))
{{ $errors->first("$input->name") }}
@endif
@endif
@endforeach