@extends('layouts.internal') @section('content') @section('breadcrumb')
@endsection
Actions:

No new action

@if (count($errors) > 0) @endif

Create Job Posting

{!! Form::open(array('route' => 'jobs.store','method'=>'POST')) !!}
{!! Form::text('title', null, array('placeholder' => 'Job Title','class' => 'form-control')) !!}
{!! Form::select('company', [null=>'Please Select'] + $companies,'null', array('class' => 'form-control')) !!}
@php $previousUrl = ''; if(url()->previous() && url()->previous() != route('jobs.create')){ $previousUrl =url()->previous(); }else{ $previousUrl = route('jobs.index'); } @endphp {!! Form::close() !!}
Advertisement space
@section('css') @endsection @section('script') @endsection @endsection