{!! Form::label('username', trans('forms.username_label'), ['class' => 'control-label']) !!} {!! Form::text('username', old('username'), ['class' => 'form-control']) !!} @if ($errors->has('username')) {{ $errors->first('username') }} @endif
{!! Form::label('password', trans('forms.storage_api_key_label'), ['class' => 'control-label']) !!} {!! Form::text('password', old('password'), ['class' => 'form-control']) !!} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{!! Form::label('service_region', trans('forms.storage_service_region_label'), ['class' => 'control-label']) !!} {!! Form::text('service_region', old('service_region'), ['class' => 'form-control']) !!} @if ($errors->has('service_region')) {{ $errors->first('service_region') }} @endif
{!! Form::label('container_name', trans('forms.storage_container_name_label'), ['class' => 'control-label']) !!} {!! Form::text('container_name', old('container_name'), ['class' => 'form-control']) !!} @if ($errors->has('container_name')) {{ $errors->first('container_name') }} @endif