create.edge

29 lines | 935 B Blame History Raw Download
@layout('layouts.main')

@section('content')

<form method="POST" action="{{ route('/themes.store') }}">
  {{ csrfField() }}
  <div class="field">
    <label class="label">Theme Name</label>
    <input class="input" type="text" name="name" placeholder="Admin boundaries" value="{{ old('name', '') }}" />
    {{ elIf('<span class="has-text-danger">$self</span>', getErrorFor('name'), hasErrorFor('name')) }}
  </div>

  <div class="field is-grouped">
      <div class="control">
        <button class="button is-link ss-submit" type="submit">Submit</button>
      </div>
      <div class="control">
      <button class="button is-text"><a href="{{ route('/themes.index') }}">Cancel</a></button>
      </div>
    </div>
    <!--
    <div class="notification is-warning">
      <button class="delete"></button>
      Building Snapshots for some items may take a couple minutes.  Please be patient!
    </div>
    -->
</form>

@endsection