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

@lang('admin.roles.title')

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

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

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

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