• {{ __('Admin') }}
  • {{ __('Settings') }}
  • {{ __('Detail') }}
  • Create

    {!!Form::open(['route' => 'admin.settings.store', 'method' => 'post', 'enctype' => 'multipart/form-data'])!!}
    {{Form::label('key', 'Key (UPPER CASE, no spaces)', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('key', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900 '.($errors->has('key') ? 'is-invalid' : null)])}} @if($errors->has('key'))

    {{$errors->first('key')}}

    @endif
    {{Form::label('value', 'Value', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('value', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900 '.($errors->has('value') ? 'is-invalid' : null)])}} @if($errors->has('value'))

    {{$errors->first('value')}}

    @endif
    {{Form::label('description', 'Description', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('description', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900 '.($errors->has('description') ? 'is-invalid' : null)])}} @if($errors->has('description'))

    {{$errors->first('description')}}

    @endif
    {{Form::label('tenant', 'Tenant', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('tenant', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900 '.($errors->has('tenant') ? 'is-invalid' : null)])}} @if($errors->has('tenant'))

    {{$errors->first('tenant')}}

    @endif
    {!!Form::close()!!}