29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
@extends('layouts.admin.b4')
|
|
@section('content')
|
|
<br>
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h2>Alliance Mining Operations Form</h2>
|
|
<h4>Enter in the information, then hit submit.</h4>
|
|
</div>
|
|
<div class="card-body">
|
|
{!! Form::open(['action' => 'MiningTaxes\MiningTaxesAdminController@storeMiningOperationForm', 'method' => 'POST']) !!}
|
|
<div class="form-group col-md-6">
|
|
{{ Form::label('name', 'Mining Operation Name') }}
|
|
{{ Form::text('name', '', ['class' => 'form-control']) }}
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
{{ Form::label('date', 'Date') }}
|
|
{{ Form::date('date', \Carbon\Carbon::now(), ['class' => 'form-control']) }}
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
{{ Form::label('structure', 'Mining Structure') }}
|
|
{{ Form::select('structure', $structures, 'None', ['class' => 'form-control']) }}
|
|
</div>
|
|
{{ Submit::submit('Submit', ['class' => 'btn btn-primary']) }}
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |