@extends('admin.template.master') @section('title')

IP White List

@endsection @section('main-content')
{!! Form::open(['url' => '/admin/ip-white-list/create' ]) !!}
{!! Form::label('name','Location') !!} {!! Form::text('location','',['class' => 'form-control', 'placeholder'=> 'Location']) !!} @if ($errors->has('location')) {!! $errors->first('location') !!} @endif
{!! Form::label('ip','IP') !!} {!! Form::text('ip','',['class' => 'form-control', 'placeholder'=> 'IP']) !!} @if ($errors->has('ip')) {!! $errors->first('ip') !!} @endif
{!! Form::close() !!}
@endsection