admin test dashboard

This commit is contained in:
2020-04-03 02:14:53 -05:00
parent 2b5f89b239
commit a16f72e9ae

View File

@@ -1,7 +1,11 @@
@extends('layouts.admin.b4')
@section('content')
<div class="container">
<div class="card">
<div class="card-header">
<h2>Update Existing Moon</h2>
</div>
<div class="card-body">
{!! Form::open(['action' => 'Moons\MoonsAdminController@storeUpdateMoon', 'method' => 'POST']) !!}
<div class="form-group col-md-6">
{{ Form::label('spmn', 'Moon') }}
@@ -28,5 +32,7 @@
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</div>
</div>
</div>
@endsection