@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')
Add {{ $pageTitle }}
{!! Form::open([ 'url' => '', 'enctype' => 'multipart/form-data', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'addDesignAdmitCardForm', ]) !!}
{!! Form::label( 'verified_by_signature_image', 'Verified by: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Sign Preview {!! Form::file('verified_by_signature_image',[ 'class' => 'form-control hidden', 'id' => 'verified_by_signature_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}

{!! Form::label( 'examination_signature_image', 'Examination Controller: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Sign Preview {!! Form::file('examination_signature_image',[ 'class' => 'form-control hidden', 'id' => 'examination_signature_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}

{!! Form::label( 'logo_image', 'Logo Image: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Logo Image Preview {!! Form::file('logo_image', [ 'class' => 'form-control hidden', 'id' => 'logo_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}

{!! Form::label( 'background_image', 'Background Image: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Background Image Preview {!! Form::file('background_image', [ 'class' => 'form-control hidden', 'id' => 'background_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection