changed models
This commit is contained in:
@@ -9,6 +9,10 @@
|
||||
{{ Form::text('region', '', ['class' => 'form-control', 'placeholder' => 'Region']) }}
|
||||
{{ Form::label('system', 'System') }}
|
||||
{{ Form::text('system', '', ['class' => 'form-control', 'placeholder' => 'System']) }}
|
||||
{{ Form::label('planet', 'Planet') }}
|
||||
{{ Form::text('planet', '', ['class' => 'form-control', 'placeholder' => 'Planet']) }}
|
||||
{{ Form::label('moon', 'Moon') }}
|
||||
{{ Form::text('moon', '', ['class' => 'form-control', 'placeholder' => 'Moon']) }}
|
||||
{{ Form::label('struture', 'Structure Name') }}
|
||||
{{ Form::text('structure', '', ['class' => 'form-control', 'placeholder' => 'Structure Name']) }}
|
||||
{{ Form::label('firstore', 'First Ore') }}
|
||||
|
||||
@@ -5,14 +5,18 @@
|
||||
<h2>Update Existing Moon</h2>
|
||||
{!! Form::open(['action' => 'MoonsController@storeUpdateMoon', 'method' => 'POST']) !!}
|
||||
<div class="form-group col-md-6">
|
||||
{{ Form::label('name', 'Structure Name') }}
|
||||
{{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'Name']) }}
|
||||
{{ Form::label('system', 'System') }}
|
||||
{{ Form::text('system', '', ['class' => 'form-control', 'placeholder' => 'Planet']) }}
|
||||
{{ Form::label('planet', 'Planet') }}
|
||||
{{ Form::text('planet', '', ['class' => 'form-control', 'placeholder' => 'Planet']) }}
|
||||
{{ Form::label('moon', 'Moon') }}
|
||||
{{ Form::text('moon', '', ['class' => 'form-control', 'placeholder' => 'Planet']) }}
|
||||
{{ Form::label('renter', 'Renter') }}
|
||||
{{ Form::text('renter', '', ['class' => 'form-control', 'placeholder' => 'Renter']) }}
|
||||
{{ Form::label('date', 'Rental End Date') }}
|
||||
{{ Form::text('date', '', ['class' => 'form-control', 'placeholder' => '01/01/1970'] )}}
|
||||
</div>
|
||||
{{ Form:;submit('Submit', ['class' => 'btn btn-primary']) }}
|
||||
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
@endsection
|
||||
16
resources/views/wiki/register.blade.php
Normal file
16
resources/views/wiki/register.blade.php
Normal file
@@ -0,0 +1,16 @@
|
||||
@extends('layouts.b4')
|
||||
@include('layouts.navbar')
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h2>Register for Warped Intentions Wiki<h2>
|
||||
{!! Form::open(['action' => 'WikiController@storeRegister', 'method' => 'POST']) !!}
|
||||
<div class="form-group col-md-6">
|
||||
{{ Form::label('password', 'Password') }}
|
||||
{{ Form::password('password', '', ['class' => 'form-control']) }}
|
||||
{{ Form::label('password2', 'Repeat Password') }}
|
||||
{{ Form::password('password2', '', ['class' => 'form-control']) }}
|
||||
</div>
|
||||
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user