@extends('admin.master') @section('title') Settings @endsection @section('sideMenuTitle') Settings @endsection @section('bodyContent')
@if(Session::has('message'))

{{Session::get('message')}}

@endif @if(Session::has('error'))

{{Session::get('error')}}

@endif @if ($errors->any())
@endif

{!! Form::open(['url' => 'settings/update', 'method' => 'post','name' => 'medForm', 'enctype' => 'multipart/form-data', 'role' => 'form']) !!}
{!! Form::close() !!}
@endsection