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

{{ ucwords(Lang::get('services.edit') . ': ' . $service->service_name) }}

{{ Form::model($service, array('method' => 'put', 'route' => array('services.update', $service->id))) }} {{ Form::label('service_name', ucwords(Lang::get('services.service_name'))) }} {{ Form::text('service_name', $service->service_name) }} {{ Form::label('service_description', ucwords(Lang::get('services.service_description'))) }} {{ Form::text('service_description', $service->service_description) }} {{ Form::submit(ucwords(Lang::get('services.edit')), array('class' => 'button radius')) }} {{ Form::close() }}
@stop