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

@lang('quickadmin.roles.title')

{!! Form::open(['method' => 'POST', 'route' => ['admin.roles.store']]) !!}
@lang('quickadmin.qa_create')
{!! Form::label('title', trans('quickadmin.roles.fields.title').'*', ['class' => 'control-label']) !!} {!! Form::text('title', old('title'), ['class' => 'form-control', 'placeholder' => '', 'required' => '']) !!}

@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
{!! Form::submit(trans('quickadmin.qa_save'), ['class' => 'btn btn-danger']) !!} {!! Form::close() !!} @stop