{!! Form::label('name', trans('City Name *')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control', 'placeholder' => trans('City Name *')]) !!} {!! $errors->first('name', ':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') !!}