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

{!! Form::open(['url' => 'services', 'class' => 'form-horizontal form-label-left']) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter network operator 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 service ' , 'id' => 'type']) !!} {!! $errors->first('type', '

:message

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