{!! Form::label('image1', trans('Image *')) !!} {!! Form::file('image1', old('image1'), ['class' => 'form-control', 'placeholder' => trans('Image *')]) !!} {!! $errors->first('image1', ':message') !!}
{!! Form::label('description', trans('Description *')) !!} {!! Form::text('description', old('description'), ['class' => 'form-control', 'placeholder' => trans('Description *')]) !!} {!! $errors->first('description', ':message') !!}
{!! Form::label('status', trans('Status')) !!}
{!! Form::label('status', trans('Enable')) !!} {!! Form::radio('status', 1, ['class' => 'form-control', 'placeholder' => trans('user::users.form.last-name')]) !!} {!! $errors->first('status', ':message') !!}    {!! Form::label('status', trans('disable')) !!} {!! Form::radio('status', 0, ['class' => 'form-control', 'placeholder' => trans('user::users.form.last-name')]) !!} {!! $errors->first('status', ':message') !!}