@extends('layouts.master') @section('content')
{{ Form::open(array('route' => array('seo.store'))) }} {{ Form::label('location_id', ucwords(Lang::get('seo.location'))) }} {{ Form::select('location_id', $locations) }} {{ Form::label('title', ucwords(Lang::get('seo.site title'))) }} {{ Form::text('title') }} {{ Form::label('keywords', ucwords(Lang::get('seo.keywords'))) }} {{ Form::text('keywords') }} {{ Form::label('meta_description', ucwords(Lang::get('seo.description'))) }} {{ Form::textarea('meta_description') }} {{ Form::submit(ucwords(Lang::get('seo.add')), array('class' => 'button tiny')) }} {{ Form::close() }}
@stop