@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('content')
@include('commons.notifications')
{{-- start of content --}}

{!! Form::model($service_arr, [ 'method' => 'PATCH', 'url' => ['services', $service_arr], 'class' => 'form-horizontal form-label-left' ]) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter name' , 'id' => 'name']) !!} {!! $errors->first('name', '

:message

') !!}
{!! Form::select('type', $service_type, old('type'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter type' , 'id' => 'type']) !!} {!! $errors->first('type', '

:message

') !!}
{!! Form::close() !!}
{{-- end of content --}}
@endsection @section('javascript') @endsection