@extends('admin.layout') @section('content')

{{ trans('Add Services Plan') }}

@php $getUserRoleData = userRoleData(); $Package = explode(",",$getUserRoleData->Package); @endphp
@if( count((array) $errors) > 0) @foreach($errors->all() as $error) @endforeach @endif @if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
@if(in_array("Add",$Package )) {!! Form::open(array('url' =>'admin/add-services-plan-data', 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addNewPackage', 'enctype'=>'multipart/form-data')) !!}
{!! Form::text('name', '', array('class'=>'form-control', 'id'=>'name', 'required'=>'required')) !!}
{!! Form::text('model_number', '', array('class'=>'form-control', 'id'=>'model_number')) !!}
{!! Form::text('existing_customer', '', array('class'=>'form-control', 'id'=>'existing_customer')) !!}
{!! Form::text('price', '', array('class'=>'form-control', 'id'=>'price', 'required'=>'required')) !!}
{!! Form::close() !!} @else

Please contact with SuperAdmin

@endif
@endsection