re-arranging moon stuff in the correct controller

This commit is contained in:
2018-10-23 20:48:03 -05:00
parent 83b00bab4f
commit 124f02367b
7 changed files with 19 additions and 32 deletions

View File

@@ -1,12 +0,0 @@
@extends('layouts.b4')
@section('content')
<h2>Add A New Moon</h2>
{!! Form::open(['action' => 'MoonsController@storeMoon', 'method' => 'POST']) !!}
<div class="form-group">
{{ Form::label('region', 'Region') }}
{{ Form::text('region', '', ['class' => 'form-control', 'placeholder' => 'Region']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
@endsection