{{ __('Add tech') }}
@if (count($errors) > 0)-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
{!! Form::select('type', $technologiesType, $tech->type, ['class' => 'form-control']) !!}
{!! Form::text('name_ar', $tech->name_ar, ['class' => 'form-control', 'placeholder' => __('Name Arabic')]) !!}
{!! Form::text('name_en', $tech->name_en, ['class' => 'form-control', 'placeholder' => __('Name English')]) !!}
{!! Form::file('icon', null, ['class' => 'form-control', 'placeholder' => 'photo', 'id' => 'input03']) !!}
{!! Form::submit(__('General.Save'), ['class' => 'btn btn-primary form-control']) !!}
{!! Form::Close() !!}