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

{{ ucwords(Lang::get('services.add')) }}

{{ Form::open(array('route' => array('services.store'))) }} {{ Form::label('service_name', ucwords(Lang::get('services.service_name'))) }} {{ Form::text('service_name') }} {{ Form::label('service_description', ucwords(Lang::get('services.service_description'))) }} {{ Form::text('service_description') }} {{ Form::submit(ucwords(Lang::get('services.add')), array('class' => 'button radius')) }} {{ Form::close() }}
@stop