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

Borrow

{!! Form::open(['route' => 'borrow.post']) !!}
{!! Form::label('student_id', 'Student..') !!} {!! Form::select('person_id', $persons, null, ['id' => 'person_id', 'class' => 'form-control']) !!}
{!! Form::label('project', 'Project..') !!}
{!! Form::label('book_id', 'Book..') !!}
{!! Form::submit('Borrow', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop @section('scripts') @stop