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

{!! Form::open(array('url'=>'restapi/save?return='.$return, 'class'=>'form-horizontal','files' => true , 'parsley-validate'=>'','novalidate'=>' ')) !!}
restapi
@if($row['id'] !='')
{!! Form::text('apikey', $row['apikey'],array('class'=>'form-control', 'placeholder'=>'','readonly'=>'1' ,'style'=>'background : #fff !important;' )) !!}

Use this apikey with useremail as basic authorization access to all your registered modules

@endif

Please register your current modules here . All registering modules , will available for API access

Example :
employee , users , customers

{!! Form::close() !!}
@stop