You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
933 B
23 lines
933 B
@extends('layouts.app')
|
|
|
|
@section('title', __('master.create'))
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><h3 class="panel-title">{{ __('master.create') }}</h3></div>
|
|
{{ Form::open(['route' => 'masters.store']) }}
|
|
<div class="panel-body">
|
|
{!! FormField::text('title', ['required' => true, 'label' => __('master.title')]) !!}
|
|
{!! FormField::textarea('description', ['label' => __('master.description')]) !!}
|
|
</div>
|
|
<div class="panel-footer">
|
|
{{ Form::submit(__('master.create'), ['class' => 'btn btn-success']) }}
|
|
{{ link_to_route('masters.index', __('app.cancel'), [], ['class' => 'btn btn-default']) }}
|
|
</div>
|
|
{{ Form::close() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|