@extends('layouts.b4') @section('content')

Test Page


New Contracts
{!! Form::open(['action' => 'ContractAdminController@storeNewContract', 'method' => 'POST']) !!}
{{ Form::label('name', 'Contract Name') }} {{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'Some Name']) }}
{{ Form::label('body', 'Description') }} {{ Form::textarea('body', '', ['class' => 'form-control']) }}
{{ Form::label('date', 'End Date') }} {{ Form::text('date', '', ['class' => 'form-control', 'placeholder' => '4/24/2019']) }}
{{ Form::label('type', 'Public Contract') }} {{ Form::radio('type', 'public', true) }} {{ Form::label('type', 'Private Contract') }} {{ Form::radio('type', 'private', false) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@endsection